Make reverse() call iter_swap like the standard says, instead of calling swap directly. No real change. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@251836 91177308-0d34-0410-b5e6-96231b3b80d8 
diff --git a/include/algorithm b/include/algorithm index 9088829..9c05119 100644 --- a/include/algorithm +++ b/include/algorithm 
@@ -2330,7 +2330,7 @@  {  if (__first == --__last)  break; - swap(*__first, *__last); + _VSTD::iter_swap(__first, __last);  ++__first;  }  } @@ -2342,7 +2342,7 @@  {  if (__first != __last)  for (; __first < --__last; ++__first) - swap(*__first, *__last); + _VSTD::iter_swap(__first, __last);  }    template <class _BidirectionalIterator>